home *** CD-ROM | disk | FTP | other *** search
/ Windows 3-Pak - Disc 3 / Infomagic - Windows 3-Pak (Disc 3 of 3).iso / Telnet-Clients / HOSTACCESS.exe / MISC.1 / UNIX.MCR < prev    next >
Text File  |  1996-01-22  |  380b  |  28 lines

  1. DIM I as integer
  2. I=0
  3. send "CR"
  4. loopy:
  5. wait timeout 10
  6. case "ogin: "
  7.  I=I+1
  8.  if I > 3 then 
  9.     print "three attempts have been made to log on"
  10.     goto final
  11.  endif
  12.  send "'root'CR"
  13.  delay 5
  14. case "word:"
  15.  send "'PIXEL99'CR"
  16.  delay 5
  17. case "(ansi) "
  18.  passkeys
  19.  delay 5
  20. case "# "
  21.  send "'sysadmsh'CR"
  22.  delay 5
  23. timeout : goto final
  24. end wait
  25. goto loopy
  26. final:
  27. end
  28.